g_free (mask);
}
+char *
+_gtk_allocated_bitmask_to_string (const GtkBitmask *mask)
+{
+ GString *str = g_string_new (NULL);
+
+ _gtk_allocated_bitmask_print (mask, str);
+
+ return g_string_free (str, FALSE);
+}
+
void
_gtk_allocated_bitmask_print (const GtkBitmask *mask,
GString *string)
GtkBitmask * _gtk_allocated_bitmask_copy (const GtkBitmask *mask);
void _gtk_allocated_bitmask_free (GtkBitmask *mask);
+char * _gtk_allocated_bitmask_to_string (const GtkBitmask *mask);
void _gtk_allocated_bitmask_print (const GtkBitmask *mask,
GString *string);